home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 21
/
CU Amiga Magazine's Super CD-ROM 21 (1998)(EMAP Images)(GB)[!][issue 1998-04].iso
/
CUCD
/
Magazine
/
C_Tutorial
/
Part-9
/
wb0
/
test2.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1998-01-03
|
229b
|
13 lines
/* Test Arexx communications */
options results
address hellopainter
text = "Hi from ARexx!"
do j = 1 to 30
'new'
do i = 15 to 1 by -1
'pen' i
'draw' 50+(2*i) 50+(2*i) text
'draw' 50+(2*i) 50-(2*i) text
end
end